home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day04 / day4.bpg < prev    next >
Encoding:
Borland Project Group  |  1998-02-08  |  838 b   |  27 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = airport readfile writefil
  13. #------------------------------------------------------------------------------
  14. default: $(PROJECTS)
  15. #------------------------------------------------------------------------------
  16.  
  17. airport: airport.bpr
  18.   $(MAKE)
  19.  
  20. readfile: readfile.bpr
  21.   $(MAKE)
  22.  
  23. writefil: writefil.bpr
  24.   $(MAKE)
  25.  
  26.  
  27.